home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 163_01 / ccargc.c < prev    next >
Text File  |  1988-01-30  |  384b  |  10 lines

  1. /*
  2. ** fetch argument count from DL register
  3. */
  4. CCARGC() {
  5. #asm
  6.        MOV AL,DL ;move argument count into function return register
  7.        CBW ;convert to 16 bit value
  8. #endasm
  9.   }
  10.